Spread Windows Forms 17
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IntervalArray<T> Class / Get Method
The index of the element to check.


In This Topic
    Get Method (IntervalArray<T>)
    In This Topic
    Determines whether the element at the specified index is set.
    Syntax
    'Declaration
     
    
    Public Function Get( _
       ByVal index As Integer _
    ) As Boolean
    'Usage
     
    
    Dim instance As IntervalArray(Of T)
    Dim index As Integer
    Dim value As Boolean
     
    value = instance.Get(index)
    public bool Get( 
       int index
    )

    Parameters

    index
    The index of the element to check.

    Return Value

    true if the element at the specified index is set; otherwise, false.
    See Also